Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    half(0)  → 0
2:    half(s(s(x)))  → s(half(x))
3:    log(s(0))  → 0
4:    log(s(s(x)))  → s(log(s(half(x))))
There are 3 dependency pairs:
5:    HALF(s(s(x)))  → HALF(x)
6:    LOG(s(s(x)))  → LOG(s(half(x)))
7:    LOG(s(s(x)))  → HALF(x)
The approximated dependency graph contains 2 SCCs: {5} and {6}. Hence the TRS is terminating.
Tyrolean Termination Tool  (0.01 seconds)   ---  May 3, 2006